[dbo].[BAEOrderProductCategoryLookupInsert]
SQLServer
>
iMIS1521GA
>
Stored Procedures
> dbo.BAEOrderProductCategoryLookupInsert
Properties
Parameters
SQL Script
Uses
Properties
Property
Value
ANSI Nulls On
Quoted Identifier On
Parameters
Name
Data Type
Max Length (Bytes)
@OrderProductID
int
4
@OrderCategoryID
int
4
@IsFeatured
bit
1
@SortOrder
int
4
SQL Script
create
procedure
[dbo]
.
[BAEOrderProductCategoryLookupInsert]
@OrderProductID
as
int
,
@OrderCategoryID
AS
int
,
@IsFeatured
AS
bit
,
@SortOrder
AS
int
AS
INSERT
INTO
OrderProductCategoryLookup
(
OrderProductID
,
OrderCategoryID
,
IsFeatured
,
SortOrder
)
VALUES
(
@OrderProductID
,
@OrderCategoryID
,
@IsFeatured
,
@SortOrder
);
GO
Uses
[dbo].[OrderProductCategoryLookup]
dbo